Disable configuration-dependent keymap tests for now
authorMatthias Clasen <mclasen@redhat.com>
Mon, 30 Apr 2012 11:32:33 +0000 (07:32 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 30 Apr 2012 11:32:33 +0000 (07:32 -0400)
These need to be made independent of the xkb configuration somehow.
As things are now, they will either fail when run on a naked X
server in make check, or fail when run in my session.

gtk/tests/keyhash.c

index 883eb6583f202eb2dc546113fdea4987c781fc22..ced83c650f372a26776f37690fef7a1a703779c2 100644 (file)
@@ -192,8 +192,10 @@ main (int argc, char **argv)
   gtk_test_init (&argc, &argv);
 
   g_test_add_func ("/keyhash/basic", test_basic);
+#if 0
+  /* FIXME: need to make these independent of xkb configuration */
   g_test_add_func ("/keyhash/match", test_match);
   g_test_add_func ("/keyhash/virtual", test_virtual);
-
+#endif
   return g_test_run();
 }